projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3499533
)
(mode-line-modified): Fix case of "Buffer is modified".
author
Glenn Morris
<rgm@gnu.org>
Tue, 23 Jun 2009 07:39:40 +0000
(07:39 +0000)
committer
Glenn Morris
<rgm@gnu.org>
Tue, 23 Jun 2009 07:39:40 +0000
(07:39 +0000)
lisp/ChangeLog
patch
|
blob
|
history
lisp/bindings.el
patch
|
blob
|
history
diff --git
a/lisp/ChangeLog
b/lisp/ChangeLog
index 25948b02375460f4991a3822e1cad2b297869bd2..104a1bd9c085a7a1a9b4f97297a3be77f52aed91 100644
(file)
--- a/
lisp/ChangeLog
+++ b/
lisp/ChangeLog
@@
-1,5
+1,7
@@
2009-06-23 Glenn Morris <rgm@gnu.org>
+ * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
+
* textmodes/ispell.el (ispell-local-dictionary): Doc fix.
* progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
diff --git
a/lisp/bindings.el
b/lisp/bindings.el
index 88073a85da1a946b69f407f06b11b8e0aaeb4bec..5cd0872206014b6fde4d310a01d6425e68b88648 100644
(file)
--- a/
lisp/bindings.el
+++ b/
lisp/bindings.el
@@
-257,8
+257,8
@@
Normally nil in most modes, since there is no process to display.")
(save-selected-window
(select-window window)
(if (buffer-modified-p)
- "
M
"
- "
N
ot m")))))
+ "
m
"
+ "
n
ot m")))))
'local-map (purecopy (make-mode-line-mouse-map
'mouse-1 #'mode-line-toggle-modified))
'mouse-face 'mode-line-highlight))